home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / pcmagdoc.arc / XDIR.DOC < prev   
Text File  |  1988-01-19  |  3KB  |  65 lines

  1.           XDIR                                      Jeff Prosise
  2.           Command                                     1987/No. 7
  3.  
  4.           ______________________________________________________
  5.  
  6.           Purpose:  XDIR.COM is a memory-resident utility that
  7.                     allows you to display the filenames in any
  8.                     drive/directory even when you are running
  9.                     another applications program.
  10.  
  11.           Format:   [d:][path]XDIR
  12.  
  13.           Remarks:  Once loaded (normally as an entry in your
  14.                     AUTOEXEC.BAT file), pressing the Alt-. (the
  15.                     Alt and the period key combination) causes a
  16.                     blank window to pop up on the screen.
  17.                     Pressing Enter then displays the first 40
  18.                     filenames of your current directory in the
  19.                     window.  Pressing Esc once clears the
  20.                     display, and pressing it a second time
  21.                     returns you to your previous application.
  22.  
  23.                     To view other directories, simply enter their
  24.                     appropriate path designation (including
  25.                     drive, if different) before pressing Enter
  26.                     when the window is blank.
  27.  
  28.                     The PgUp and PgDn keys are used to display
  29.                     files beyond the initial 40 shown in the
  30.                     window.  Up to 360 files in any one directory
  31.                     may be displayed.
  32.  
  33.                     Notes:
  34.  
  35.                     1.   If you are experienced in using DEBUG,
  36.                          you may wish to change some of the
  37.                          XDIR.COM defaults.  Remember always to
  38.                          make changes to a copy of the program,
  39.                          not to your original.  After entering
  40.                          DEBUG XDIR.COM, the following addresses
  41.                          and initial values may be of interest:
  42.  
  43.                          Offset  Value   Parameter
  44.                          :013C    4F     Border color attribute
  45.                          :013D    0F     Text color attribute
  46.                          :014D    00     File type (see Note 2)
  47.                          :0186    34     Period key scan code
  48.                          :018E    08     Alt-key shift code
  49.  
  50.                     2.   By default, XDIR displays only normal
  51.                          filenames (00 at :014D).  To show hidden
  52.                          files, the value here should be 02.
  53.                          System files are 04, and subdirectories
  54.                          are 10h.  These values are additive.  To
  55.                          display subdirectories and files marked
  56.                          both hidden and system (e.g. IBMBIO.COM)
  57.                          you would enter the value 16h at offset
  58.                          :014D in place of the default 00.
  59.  
  60.                     3.   While no TSR program can be guaranteed
  61.                          compatible with all other memory
  62.                          residents, its special interrupt
  63.                          handling should make XDIR.COM coexist
  64.                          even with most "difficult" TSRs.
  65.